Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633410 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/30 - Tic Tac Toe

font/ cody/swapnilsparsh/30DaysOfJavaScript/30 - Tic Tac Toe/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/30 - Tic Tac Toe/assets/
    1 Items
  • tic-tac-toe.png
  • style.css cody/swapnilsparsh/30DaysOfJavaScript/30 - Tic Tac Toe/style.css
    115 Views
    0 Comments
    * {
    padding: 0;
    box-sizing: border-box;
    font-family: "sans";
    }

    @font-face {
    font-family: "sans";
    index.html cody/swapnilsparsh/30DaysOfJavaScript/30 - Tic Tac Toe/index.html
    332 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
    <link rel="shortcut icon" href="assets/tic-tac-toe.png" type="image/x-icon">
    script.js cody/swapnilsparsh/30DaysOfJavaScript/30 - Tic Tac Toe/script.js
    172 Views
    0 Comments
    var modal = document.getElementById('myModal');
    var grid = new Array(3);
    grid[0] = new Array(3);
    grid[1] = new Array(3);
    grid[2] = new Array(3);
    var player = 0;
    var gameWon = 0;
    var numberMap = new Map();